Initializes a new Pair object with two types to combine into one type. Namespace: Microsoft.EnterpriseManagement.Common
Assembly: Microsoft.EnterpriseManagement.OperationsManager.Common (in microsoft.enterprisemanagement.operationsmanager.common.dll)

Usage

Visual Basic
Dim first As T
Dim second As V

Dim instance As New Pair(Of T, V)(first, second)

Syntax

Visual Basic
Public Sub New ( _
		first As T, _
		second As V _
)
C#
public Pair (
		T first,
		V second
)
C++
public:
Pair (
		T first, 
		V second
)
J#
public Pair (
		T first, 
		V second
)
JScript
public function Pair (
		first : T, 
		second : V
)

Parameters

first

The first type.

second

The second type.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003,Windows Vista,Windows XP

See Also